home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / misc / gs261src.zip / zupath.c < prev    next >
C/C++ Source or Header  |  1993-05-13  |  13KB  |  497 lines

  1. /* Copyright (C) 1990, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* zupath.c */
  20. /* Operators related to user paths */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "dict.h"
  25. #include "dstack.h"
  26. #include "iutil.h"
  27. #include "state.h"
  28. #include "store.h"
  29. #include "stream.h"
  30. #include "bnum.h"
  31. #include "gsmatrix.h"
  32. #include "gspath.h"
  33. #include "gsstate.h"
  34. #include "gscoord.h"
  35. #include "gspaint.h"
  36. #include "gxfixed.h"
  37. #include "gxdevice.h"
  38. #include "gxpath.h"
  39.  
  40. /* Forward references */
  41. private int upath_append(P1(os_ptr));
  42. private int upath_stroke(P1(os_ptr));
  43.  
  44. /* ------ Insideness testing ------ */
  45.  
  46. /* Forward references */
  47. private int in_test(P2(os_ptr, int (*)(P1(gs_state *))));
  48. private int in_path(P1(os_ptr));
  49. private int in_path_result(P3(os_ptr, int, int));
  50. private int in_utest(P2(os_ptr, int (*)(P1(gs_state *))));
  51. private int in_upath(P1(os_ptr));
  52. private int in_upath_result(P3(os_ptr, int, int));
  53.  
  54. /* We use invalidexit, which the painting procedures cannot generate, */
  55. /* as an "error" to indicate that the hit detection device found a hit. */
  56. #define e_hit e_invalidexit
  57.  
  58. /* <x> <y> ineofill <bool> */
  59. /* <userpath> ineofill <bool> */
  60. int
  61. zineofill(os_ptr op)
  62. {    return in_test(op, gs_eofill);
  63. }
  64.  
  65. /* <x> <y> infill <bool> */
  66. /* <userpath> infill <bool> */
  67. int
  68. zinfill(os_ptr op)
  69. {    return in_test(op, gs_fill);
  70. }
  71.  
  72. /* <x> <y> instroke <bool> */
  73. /* <userpath> instroke <bool> */
  74. int
  75. zinstroke(os_ptr op)
  76. {    return in_test(op, gs_stroke);
  77. }
  78.  
  79. /* <x> <y> <userpath> inueofill <bool> */
  80. /* <userpath1> <userpath2> inueofill <bool> */
  81. int
  82. zinueofill(os_ptr op)
  83. {    return in_utest(op, gs_eofill);
  84. }
  85.  
  86. /* <x> <y> <userpath> inufill <bool> */
  87. /* <userpath1> <userpath2> inufill <bool> */
  88. int
  89. zinufill(os_ptr op)
  90. {    return in_utest(op, gs_fill);
  91. }
  92.  
  93. /* <x> <y> <userpath> inustroke <bool> */
  94. /* <userpath1> <userpath2> inustroke <bool> */
  95. int
  96. zinustroke(os_ptr op)
  97. {    /* This is different because of the optional matrix operand. */
  98.     int code = gs_gsave(igs);
  99.     int spop, npop;
  100.     if ( code < 0 ) return code;
  101.     if ( (spop = upath_stroke(op)) < 0 ||
  102.          (npop = in_path(op - spop)) < 0
  103.        )
  104.        {    gs_grestore(igs);
  105.         return code;
  106.        }
  107.     code = gs_stroke(igs);
  108.     return in_upath_result(op, npop + spop, code);
  109. }
  110.  
  111. /* ------ Internal routines ------ */
  112.  
  113. /* Define a minimal device for insideness testing. */
  114. /* It returns e_hit whenever it is asked to actually paint any pixels. */
  115. private dev_proc_fill_rectangle(hit_fill_rectangle);
  116. private gx_device_procs hit_procs = {
  117.     NULL,                /* open_device */
  118.     NULL,                /* get_initial_matrix */
  119.     NULL,                /* sync_output */
  120.     NULL,                /* output_page */
  121.     NULL,                /* close_device */
  122.     gx_default_map_rgb_color,
  123.     gx_default_map_color_rgb,
  124.     hit_fill_rectangle,
  125.     NULL,                /* tile_rectangle */
  126.     NULL,                /* copy_mono */
  127.     NULL,                /* copy_color */
  128.     gx_default_draw_line
  129. };
  130. private gx_device hit_device =
  131. {    sizeof(gx_device),
  132.     &hit_procs,
  133.     "hit detector",
  134.     0, 0, 1, 1, no_margins, dci_black_and_white, 0    /* generic */
  135. };
  136. /* Test for a hit when filling a rectangle. */
  137. private int
  138. hit_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  139.   gx_color_index color)
  140. {    return (w > 0 && h > 0 ? e_hit : 0);
  141. }
  142.  
  143. /* Do the work of the non-user-path insideness operators. */
  144. private int
  145. in_test(os_ptr op, int (*paintproc)(P1(gs_state *)))
  146. {    int npop = in_path(op);
  147.     int code;
  148.     if ( npop < 0 ) return npop;
  149.     code = (*paintproc)(igs);
  150.     return in_path_result(op, npop, code);
  151. }
  152.  
  153. /* Set up a clipping path and device for insideness testing. */
  154. private int
  155. in_path(os_ptr op)
  156. {    int code = gs_gsave(igs);
  157.     int npop;
  158.     float uxy[2];
  159.     if ( code < 0 ) return code;
  160.     code = num_params(op, 2, uxy);
  161.     if ( code >= 0 )
  162.        {    /* Aperture is a single pixel. */
  163.         gs_point dxy;
  164.         gs_fixed_rect fr;
  165.         gs_transform(igs, uxy[0], uxy[1], &dxy);
  166.         fr.p.x = fixed_floor(float2fixed(dxy.x));
  167.         fr.p.y = fixed_floor(float2fixed(dxy.y));
  168.         fr.q.x = fr.p.x + int2fixed(1);
  169.         fr.q.y = fr.p.y + int2fixed(1);
  170.         code = gx_clip_to_rectangle(igs, &fr);
  171.         npop = 2;
  172.        }
  173.     else
  174.        {    /* Aperture is a user path. */
  175.         if ( (code = upath_append(op)) >= 0 )
  176.             code = gx_clip_to_path(igs);
  177.         npop = 1;
  178.        }
  179.     if ( code < 0 )
  180.        {    gs_grestore(igs);
  181.         return code;
  182.        }
  183.     /* Install the hit detection device. */
  184.     gs_setgray(igs, 0.0);
  185.     gx_set_device_only(igs, &hit_device);
  186.     return npop;
  187. }
  188.  
  189. /* Finish an insideness test. */
  190. private int
  191. in_path_result(os_ptr op, int npop, int code)
  192. {    int result;
  193.     gs_grestore(igs);
  194.     switch ( code )
  195.        {
  196.     case e_hit:            /* found a hit */
  197.         result = 1;
  198.         break;
  199.     case 0:                /* completed painting without a hit */
  200.         result = 0;
  201.         break;
  202.     default:            /* error */
  203.         return code;
  204.        }
  205.     npop--;
  206.     pop(npop); op -= npop;
  207.     make_bool(op, result);
  208.     return 0;
  209.         
  210. }
  211.  
  212. /* Do the work of the user-path insideness operators. */
  213. private int
  214. in_utest(os_ptr op, int (*paintproc)(P1(gs_state *)))
  215. {    int npop = in_upath(op);
  216.     int code;
  217.     if ( npop < 0 ) return npop;
  218.     code = (*paintproc)(igs);
  219.     return in_upath_result(op, npop, code);
  220. }
  221.  
  222. /* Set up a clipping path and device for insideness testing */
  223. /* with a user path. */
  224. private int
  225. in_upath(os_ptr op)
  226. {    int code = gs_gsave(igs);
  227.     int npop;
  228.     if ( code < 0 ) return code;
  229.     if ( (code = upath_append(op)) < 0 ||
  230.          (npop = in_path(op - 1)) < 0
  231.        )
  232.        {    gs_grestore(igs);
  233.         return code;
  234.        }
  235.     return npop + 1;
  236. }
  237.  
  238. /* Finish an insideness test with a user path. */
  239. private int
  240. in_upath_result(os_ptr op, int npop, int code)
  241. {    gs_grestore(igs);        /* undo the extra gsave */
  242.     return in_path_result(op, npop, code);
  243. }
  244.  
  245. /* ------ User paths ------ */
  246.  
  247. /* User path operator codes */
  248. typedef enum {
  249.   upath_setbbox = 0,
  250.   upath_moveto = 1,
  251.   upath_rmoveto = 2,
  252.   upath_lineto = 3,
  253.   upath_rlineto = 4,
  254.   upath_curveto = 5,
  255.   upath_rcurveto = 6,
  256.   upath_arc = 7,
  257.   upath_arcn = 8,
  258.   upath_arct = 9,
  259.   upath_closepath = 10,
  260.   upath_ucache = 11
  261. } upath_op;
  262. #define upath_op_max 11
  263. #define upath_repeat 32
  264. static byte up_nargs[upath_op_max + 1] =
  265.    { 4, 2, 2, 2, 2, 6, 6, 5, 5, 5, 0, 0 };
  266. #define zp(proc) extern int proc(P1(os_ptr))
  267.     zp(zsetbbox); zp(zmoveto); zp(zrmoveto);
  268.     zp(zlineto); zp(zrlineto); zp(zcurveto); zp(zrcurveto);
  269.     zp(zarc); zp(zarcn); zp(zarct); zp(zclosepath); zp(zucache);
  270. #undef zp
  271. static op_proc_p up_ops[upath_op_max + 1] =
  272.    {    zsetbbox, zmoveto, zrmoveto, zlineto, zrlineto,
  273.     zcurveto, zrcurveto, zarc, zarcn, zarct,
  274.     zclosepath, zucache
  275.    };
  276.  
  277. /* - ucache - */
  278. int
  279. zucache(os_ptr op)
  280. {    /* A no-op for now. */
  281.     return 0;
  282. }
  283.  
  284. /* <userpath> uappend - */
  285. int
  286. zuappend(register os_ptr op)
  287. {    int code = gs_gsave(igs);
  288.     if ( code < 0 ) return code;
  289.     if ( (code = upath_append(op)) >= 0 )
  290.         code = gs_upmergepath(igs);
  291.     gs_grestore(igs);
  292.     if ( code < 0 ) return code;
  293.     pop(1);
  294.     return 0;
  295. }
  296.  
  297. /* <userpath> ueofill - */
  298. int
  299. zueofill(register os_ptr op)
  300. {    int code = gs_gsave(igs);
  301.     if ( code < 0 ) return code;
  302.     if ( (code = upath_append(op)) >= 0 )
  303.         code = gs_eofill(igs);
  304.     gs_grestore(igs);
  305.     if ( code < 0 ) return code;
  306.     pop(1);
  307.     return 0;
  308. }
  309.  
  310. /* <userpath> ufill - */
  311. int
  312. zufill(register os_ptr op)
  313. {    int code = gs_gsave(igs);
  314.     if ( code < 0 ) return code;
  315.     if ( (code = upath_append(op)) >= 0 )
  316.         code = gs_fill(igs);
  317.     gs_grestore(igs);
  318.     if ( code < 0 ) return code;
  319.     pop(1);
  320.     return 0;
  321. }
  322.  
  323. /* <userpath> ustroke - */
  324. /* <userpath> <matrix> ustroke - */
  325. int
  326. zustroke(register os_ptr op)
  327. {    int code = gs_gsave(igs);
  328.     int npop;
  329.     if ( code < 0 ) return code;
  330.     if ( (code = npop = upath_stroke(op)) >= 0 )
  331.         code = gs_stroke(igs);
  332.     gs_grestore(igs);
  333.     if ( code < 0 ) return code;
  334.     pop(npop);
  335.     return 0;
  336. }
  337.  
  338. /* <userpath> ustrokepath - */
  339. /* <userpath> <matrix> ustrokepath - */
  340. int
  341. zustrokepath(register os_ptr op)
  342. {    int code = gs_gsave(igs);
  343.     int npop;
  344.     if ( code < 0 ) return code;
  345.     if ( (code = npop = upath_stroke(op)) < 0 ||
  346.          (code = gs_strokepath(igs)) < 0 ||
  347.          (code = gs_upmergepath(igs)) < 0
  348.        )
  349.         ;
  350.     gs_grestore(igs);
  351.     if ( code < 0 ) return code;
  352.     pop(npop);
  353.     return 0;
  354. }
  355.  
  356. /* --- Internal routines --- */
  357.  
  358. /* Append a user path to the current path. */
  359. private int
  360. upath_append(os_ptr op)
  361. {    check_read(*op);
  362.     gs_newpath(igs);
  363.     /****** ROUND tx AND ty ******/
  364.     if ( r_has_type(op, t_array) && r_size(op) == 2 &&
  365.          r_has_type(op->value.refs + 1, t_string)
  366.        )
  367.        {    /* 1st element is operators, 2nd is operands */
  368.         stream st;
  369.         int code;
  370.         int repcount = 1;
  371.         const byte *opp;
  372.         uint ocount;
  373.         code = sread_num_array(&st, op->value.refs);
  374.         if ( code < 0 ) return code;
  375.         opp = op->value.refs[1].value.bytes;
  376.         ocount = r_size(&op->value.refs[1]);
  377.         while ( ocount-- )
  378.            {    byte opx = *opp++;
  379.             if ( opx > 32 )
  380.                 repcount = opx - 32;
  381.             else if ( opx > upath_op_max )
  382.                 return_error(e_typecheck);
  383.             else        /* operator */
  384.                {    do
  385.                    {    byte opargs = up_nargs[opx];
  386.                     while ( opargs-- )
  387.                        {    push(1);
  388.                         code = sget_encoded_number(&st, op);
  389.                         switch ( code )
  390.                            {
  391.                         case t_integer:
  392.                             r_set_type_attrs(op, t_integer, 0);
  393.                             break;
  394.                         case t_real:
  395.                             r_set_type_attrs(op, t_real, 0);
  396.                             break;
  397.                         default:
  398.                             return_error(e_typecheck);
  399.                            }
  400.                        }
  401.                     code = (*up_ops[opx])(op);
  402.                     if ( code < 0 ) return code;
  403.                     op = osp;    /* resync */
  404.                    }
  405.                 while ( --repcount );
  406.                 repcount = 1;
  407.                }
  408.            }
  409.        }
  410.     else
  411.        {    /* Ordinary executable array */
  412.         const ref *arp = op;
  413.         ref *defp;
  414.         ref rup;
  415.         uint ocount = r_size(op);
  416.         long index = 0;
  417.         int argcount = 0;
  418.         int (*oproc)(P1(os_ptr));
  419.         int opx, code;
  420.         for ( ; index < ocount; index++ )
  421.          switch ( array_get(arp, index, &rup), r_type(&rup) )
  422.            {
  423.         case t_integer:
  424.         case t_real:
  425.             argcount++;
  426.             push(1);
  427.             *op = rup;
  428.             break;
  429.         case t_name:
  430.             if ( !r_has_attr(&rup, a_executable) )
  431.                 return_error(e_typecheck);
  432.             if ( dict_find(systemdict, &rup, &defp) <= 0 )
  433.                 return_error(e_undefined);
  434.             if ( r_btype(defp) != t_operator )
  435.                 return_error(e_typecheck);
  436.             goto xop;
  437.         case t_operator:
  438.             defp = &rup;
  439. xop:            if ( !r_has_attr(defp, a_executable) )
  440.                 return_error(e_typecheck);
  441.             oproc = real_opproc(defp);
  442.             for ( opx = 0; opx <= upath_op_max; opx++ )
  443.                 if ( oproc == up_ops[opx] ) break;
  444.             if ( opx > upath_op_max || argcount != up_nargs[opx] )
  445.                 return_error(e_typecheck);
  446.             code = (*oproc)(op);
  447.             if ( code < 0 ) return code;
  448.             op = osp;    /* resync ostack pointer */
  449.             argcount = 0;
  450.             break;
  451.         default:
  452.             return_error(e_typecheck);
  453.            }
  454.         if ( argcount )
  455.             return_error(e_typecheck);    /* leftover args */
  456.        }
  457.     return 0;
  458. }
  459.  
  460. /* Append a user path to the current path, and then apply */
  461. /* a transformation if one is supplied. */
  462. private int
  463. upath_stroke(register os_ptr op)
  464. {    int code, npop;
  465.     gs_matrix mat;
  466.     if ( (code = read_matrix(op, &mat)) >= 0 )
  467.        {    if ( (code = upath_append(op - 1)) >= 0 )
  468.             code = gs_concat(igs, &mat);
  469.         npop = 2;
  470.        }
  471.     else
  472.        {    code = upath_append(op);
  473.         npop = 1;
  474.        }
  475.     return (code < 0 ? code : npop);
  476. }
  477.  
  478. /* ------ Initialization procedure ------ */
  479.  
  480. op_def zupath_op_defs[] = {
  481.         /* Insideness testing */
  482.     {"1ineofill", zineofill},
  483.     {"1infill", zinfill},
  484.     {"1instroke", zinstroke},
  485.     {"2inueofill", zinueofill},
  486.     {"2inufill", zinufill},
  487.     {"2inustroke", zinustroke},
  488.         /* User paths */
  489.     {"1uappend", zuappend},
  490.     {"1ueofill", zueofill},
  491.     {"1ufill", zufill},
  492.     {"1ustroke", zustroke},
  493.     {"1ustrokepath", zustrokepath},
  494.     {"0ucache", zucache},
  495.     op_def_end(0)
  496. };
  497.